home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / pctj8410.arc / CURSOR_S.ASM < prev    next >
Assembly Source File  |  1986-09-14  |  384b  |  13 lines

  1. ;edit rda 12/83
  2. ;
  3. CURSOR_SET PROC NEAR      ;advance cursor by 1
  4.     MOV  AH,3          ;bios read cursor position fcn
  5.     MOV  BH,0          ;display page 0
  6.     INT  10H    ;dx has row,column of cursor
  7.     INC  DL              ;this increments column
  8.     MOV  AH,2          ;write cursor fcn call
  9.     MOV  BH,0          ;display page 0
  10.     INT  10H    ;write cursor
  11.     RET
  12. CURSOR_SET ENDP
  13.